home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 11047 / 11047.xpi / content / myvideo2mp3.js < prev    next >
Text File  |  2009-06-10  |  969b  |  35 lines

  1. // ==UserScript==
  2. // @name           MyVideo 2 MP3
  3. // @description    Adds an option to download and convert MyVideo videos.
  4. // @namespace      http://googlesystem.blogspot.com
  5. // @include        http://*.myvideo.de/watch/*
  6. // @include        http://myvideo.de/watch/*
  7. // @version        0.3
  8. // ==/UserScript==
  9.  
  10. (function () {
  11.  
  12.  
  13.  
  14.   if (document.getElementById('convert-myvideo-video')) return;
  15.  
  16.  
  17.   
  18.  
  19.   
  20.   
  21.   
  22.   //if (video_id==null) return;
  23.  
  24.    var myvideo2mp3path ='http://www.video2mp3.net/?url='+encodeURIComponent(document.URL); 
  25.    
  26.    var div_embed = document.getElementById('video_vote_content');
  27.    if (div_embed) {
  28.       div_embed.innerHTML = div_embed.innerHTML + '<table><tr><td><span id=\'convert-myvideo-video\'> <a class=\'btn\'  href=\''+myvideo2mp3path+'\' title=\'Convert this video into MP3 and download it\' target=\'_blank\'><b>Convert & Download as MP3</b></a></span></td></tr></table><br />';      
  29.   }
  30.  
  31.  
  32.  
  33.  
  34.   
  35. })();